home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / AppleScript / Additions / Wild 1.0.1 / project / C sources / parm.h < prev    next >
Encoding:
Text File  |  1994-05-09  |  1.2 KB  |  32 lines  |  [TEXT/KAHL]

  1. //    parm.h        process parameters of wildcard AppleScript extension
  2. //
  3. //    93/11/17    File created
  4. //    94/01/24    *** released Wild 1.0.0 ***
  5. //    94/05/09    Totally removed the licensing mechanism and added the GNU comments
  6. //
  7. //--------------------------------------------------------------------------------------------------
  8. //  Copyright © 1993, 1994 by Rainbow Hill Pty Ltd.
  9. //
  10. //    This program is free software; you can redistribute it and/or modify it under the terms of
  11. //    the GNU General Public License as published by the Free Software Foundation; either version 2
  12. //    of the License, or any later version.
  13. //
  14. //    This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
  15. //    without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  16. //    See the GNU General Public License for more details.
  17. //
  18. //    You should have received a copy of the GNU General Public License along with this program;
  19. //    if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. //
  21. #pragma once
  22.  
  23. #include <Errors.h>
  24. #include <AppleEvents.h>
  25. #include "wild.h"
  26.  
  27. extern OSErr parm_get(
  28.                         AppleEvent *,        // --> AE to process
  29.                         wild_parm_t *,        // <-- parms
  30.                         char *                // <-- error message
  31.                         );
  32.